www.gusucode.com > 环保时代家庭财务管理系统 EPffms v4.0 > 环保时代家庭财务管理系统 EPffms v4.0\code\eptimehome\money_add.asp

    <!-- #include file="conn.asp" -->
<%
'****************************************************
'Code for EptimeFFMS
'Vision : v4.0
'****************************************************
%>
<html>
<head>
<title><%=sitename%>-添加帐务</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">

<link href="images/admin.css" rel="stylesheet" type="text/css">
<style>
body {
	background-color:#FFFFFF;
}
</style>
</HEAD>
<BODY>
<%
if request("hid2")<>"" then
nowselldate=request("selldate")
nowtype=request("type")
nowbigclass=request("bigclass")
nowsmallclass=request("smallclass")
nowprice=request("price")
if nowprice="" then
  nowprice=0
end if

nowbeizhu=request("beizhu")
nowzhanghu=request("zhanghu")
nowid_login=request("id_login")
nowaddtime=Now()

set rs_login=conn.execute("select * from Eptime_admin where id="&nowid_login)
If(databaseType=0) Then 
sql="insert into Eptime_money(id_bigclass,zhanghu,id_smallclass,type,price,beizhu,id_login,login,selldate,addtime) values("&nowbigclass&","&nowzhanghu&","&nowsmallclass&","&nowtype&","&nowprice&",'"&nowbeizhu&"',"&nowid_login&",'"&rs_login("username")&"',#"&nowselldate&"#,#"&nowaddtime&"#)"
ElseIf(databaseType=1) Then
sql="insert into Eptime_money(id_bigclass,zhanghu,id_smallclass,type,price,beizhu,id_login,login,selldate,addtime) values("&nowbigclass&","&nowzhanghu&","&nowsmallclass&","&nowtype&","&nowprice&",'"&nowbeizhu&"',"&nowid_login&",'"&rs_login("username")&"','"&nowselldate&"','"&nowaddtime&"')"
End If 
conn.execute(sql)


If nowtype="0" Then
sql="update Eptime_zhanghu set amount=amount+"&nowprice&" where id="&nowzhanghu
conn.execute(sql)
End If

If nowtype="1" Then
sql="update Eptime_zhanghu set amount=amount-"&nowprice&" where id="&nowzhanghu
conn.execute(sql)
End If
%>
<script language="javascript">
alert("操作成功!")
window.location.href="money.asp"
</script> 
<%
response.end
end if
%>
<script language="javascript">
function isNumberString (InString,RefString)
{
if(InString.length==0) return (false);
for (Count=0; Count < InString.length; Count++)  {
	TempChar= InString.substring (Count, Count+1);
	if (RefString.indexOf (TempChar, 0)==-1)  
	return (false);
}
return (true);
}

function check()
{
if (document.form3.smallclass.value=="")
{
alert("小分类必须填写,如此大类下无小类,请先添加!");
return false;
}
if (document.form3.price.value=="")
{
alert("金额必须填写!");
return false;
}
if (isNumberString(document.form3.price.value,"1234567890.")!=1)
{
alert("金额只能为数字!");
return false;
}
}
</script>
<%
nowtype=request("type")
if nowtype="" then nowtype=0 End If 
%>
<!--当前导航-->
<script type="text/JavaScript">if(parent.$('admincpnav')) parent.$('admincpnav').innerHTML='首页&nbsp;&raquo;&nbsp;流水账薄&nbsp;&raquo;&nbsp;新增帐薄';</script>

<table width="95%" border="0" cellpadding="0" cellspacing="0" bgcolor="#C4D8ED">
<tr>
<td><img src="images/r_1.gif" alt="" /></td>
<td width="100%" background="images/r_0.gif">
  <table cellpadding="0" cellspacing="0" width="100%">
    <tr>
      <td>&nbsp;添加帐务(带*号的为必填项)</td>
	  <td align="right">&nbsp;</td>
    </tr>
  </table>
</td>
<td><img src="images/r_2.gif" alt="" /></td>
</tr>
<tr>
<td></td>
<td>
<table align="center" cellpadding="4" cellspacing="1" class="toptable grid" border="1">
      <form name="form1">
      <tr>
        <td width="20%" height="30" align="right">类型:</td>
        <td width="80%" class="category">
		<select name="type" onChange="form1.submit()">
          <option value="0"<%if nowtype="0" then%> selected="selected"<%end if%>>收入</option>
          <option value="1"<%if nowtype="1" then%> selected="selected"<%end if%>>支出</option>
        </select></td>
      </tr>	
	  </form>
	  <form name="form2">
	  <input type="hidden" name="type" value="<%=nowtype%>">
      <tr>
        <td align="right" height="30">所属大类:</td>
        <td class="category">
    <%
	sql="select * from Eptime_money_bigclass where type="&nowtype&" order by id"
	set rs_bigclass=conn.execute(sql)
	if rs_bigclass.eof then
	%>
	<script language="javascript">
	  alert("请先添加帐务大类!")
	  window.location.href="bigclass_add.asp"
	</script>
	<%
	  response.end
	end if
	nowbigclass=request("bigclass")
	if nowbigclass="" then
	  nowbigclass=rs_bigclass("id")
	end if
	%>
	  <select name="bigclass" onChange="form2.submit()">
        <%
	do while rs_bigclass.eof=false
	%>
        <option value="<%=rs_bigclass("id")%>"<%if trim(cstr(rs_bigclass("id")))=nowbigclass then%> selected="selected"<%end if%>><%=rs_bigclass("bigclass")%></option>
        <%
	  rs_bigclass.movenext
	loop
	%>
      </select>		  
		  </td>
      </tr>	
	  </form>
	  <form name="form3"> 
	  <input type="hidden" name="bigclass" value="<%=nowbigclass%>">
	  <input type="hidden" name="type" value="<%=nowtype%>">
      <tr>
        <td align="right" height="30">所属小类:</td>
        <td class="category">
    <%
	sql="select * from Eptime_money_smallclass where id_bigclass="&nowbigclass&" order by id"
	set rs_smallclass=conn.execute(sql)
	%>
	  <select name="smallclass">
        <%
	do while rs_smallclass.eof=false
	%>
        <option value="<%=rs_smallclass("id")%>"<%if trim(cstr(rs_smallclass("id")))=nowsmallclass then%> selected="selected"<%end if%>><%=rs_smallclass("smallclass")%></option>
        <%
	  rs_smallclass.movenext
	loop
	%>
      </select>  
		  </td>
      </tr>  
      <tr>
        <td align="right" height="30">金额:</td>
        <td class="category"><input type="text" name="price" style="width:100px" onKeyUp="value=value.replace(/[^\d.]/g,'')" onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[^\d.]/g,''))">
		  <font color="#666666">元</font>
		  <font color="#ff0000">*</font>
		</td>
      </tr>	
	  <tr>
	    <td align="right" height="30">时间:</td>
        <td class="category">
		  <input name="selldate" value="<%=date()%>" readonly style="width:150px">
		  <img src="images/date.gif" align="absmiddle" style="cursor:pointer;" onClick="JavaScript:window.open('day.asp?form=form3&field=selldate&oldDate='+selldate.value,'','directorys=no,toolbar=no,status=no,menubar=no,scrollbars=no,resizable=no,width=250,height=170,top=200,left=520');">
		</td>
      </tr>  
	<tr>
        <td align="right" height="30">资金账户:</td>
        <td class="category">
		  <%
			sql="select * from Eptime_zhanghu order by id"
			set rs_zhanghu=conn.execute(sql)	  
		  if rs_zhanghu.eof then
		  %>
	      <script language="javascript">
	        alert("请先添加账户!")
	        window.location.href="zhanghu_add.asp"
	      </script>
		  <%
		  response.end
		  else
		  %>
		  <select name="zhanghu">
		  <%
		  do while rs_zhanghu.eof=false
		  %>
		    <option value="<%=rs_zhanghu("id")%>"><%=rs_zhanghu("name")%> </option>
		  <%
		    rs_zhanghu.movenext
		  loop
		  %>
		  </select>
		  <%
		  end if
		  %>		</td>
      </tr>	  

      <tr>
        <td align="right" height="30">家庭成员:</td>
        <td class="category">
		  <%
			sql="select * from Eptime_admin where working=1 order by id"
			set rs_login=conn.execute(sql)	  
		  if rs_login.eof then
		  %>
	      <script language="javascript">
	        alert("请先添加!")
	        window.location.href="admin_manager.asp"
	      </script>
		  <%
		  response.end
		  else
		  %>
		  <select name="id_login">
		  <%
		  do while rs_login.eof=false
		  %>
		    <option value="<%=rs_login("id")%>"<%if rs_login("username")=request.Cookies("username") then%> selected="selected"<%end if%>><%=rs_login("realname")%> </option>
		  <%
		    rs_login.movenext
		  loop
		  %>
		  </select>
		  <%
		  end if
		  %>		</td>
      </tr>	
      <tr>
        <td align="right" height="30">备注:</td>
        <td class="category">
          <textarea name="beizhu" cols="60" rows="3"></textarea>
        </td>
      </tr>	  	  
      <tr>
	    <td height="30">&nbsp;</td>
        <td class="category">
		  <input type="submit" value=" 确认添加 " onClick="return check()" class="button">&nbsp;&nbsp;&nbsp;&nbsp;
		  <input type="hidden" name="hid2" value="ok">
		  <input type="reset" value=" 重新填写 " class="button">		</td>
      </tr>
	  </form>
</table>	
</td>
<td></td>
</tr>
<tr>
<td><img src="images/r_4.gif" alt="" /></td>
<td></td>
<td><img src="images/r_3.gif" alt="" /></td>
</tr>
</table>
</body>
</html>